home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / m2gem106.lzh / CRYSTAL1.06 / TST / HELLO / HELLO.M2
Encoding:
Text File  |  1991-12-21  |  401 b   |  18 lines

  1. MODULE Hello;
  2.  
  3. FROM ApplMgr   IMPORT ApplInit,ApplExit;
  4. FROM FormMgr   IMPORT FormAlert;
  5. FROM PORTAB    IMPORT UNSIGNEDWORD;
  6. FROM SYSTEM    IMPORT ADR;
  7.  
  8. VAR Button     : UNSIGNEDWORD;
  9.     AlertString: ARRAY[0..255] OF CHAR;
  10.  
  11. BEGIN
  12.   IF ApplInit() >= 0 THEN
  13.     AlertString:= "[1][| Hello World! |][  OK  ]";
  14.     Button:= FormAlert(1,ADR(AlertString));
  15.     ApplExit;
  16.   END;
  17. END Hello.
  18.